/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('./img/Dgmarkenting.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
    z-index: 2;
}


.close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.back-btn-top {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-size: 1.2rem;
    z-index: 1000;
}

.back-btn-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #ff8c00;
}

.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-size: 1.2rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #ff8c00;
}

.hero-tag {
    display: inline-flex;          
    align-items: center;
    background: rgba(254, 154, 0, 0.3);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ff8c00;
    padding: 5px 15px;             
    border-radius: 20px;           
    font-size: 0.75rem;           
    font-weight: 500;
    letter-spacing: 0.5px;        
    margin-bottom: 20px;
    text-transform: uppercase;
}


.tag-dot {
    width: 8px;
    height: 8px;
    background-color: #ff8c00;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-content {
    /* text-align: center; */
    max-width: 800px;
    padding: 0 30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
     display: inline-block;
}

.hero-title {
    font-size: 5rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
    max-width: 900px;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1000px;
}

.hero-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, rgba(255, 140, 0, 0.3));
    margin: 0 auto;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    background-color: #0d0d0d;
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    /* margin-bottom: 25px; */
    position: relative;
    padding-bottom: 15px;
    color: #ff8c00;
    padding-bottom: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: transparent;
}

/* Story Section */
.story-section {
    padding: 40px;
    /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 15px;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8b8;
    margin: 0;
    padding-bottom: 15px;
    
}

/* Project Details Card */
.project-details-card {
   border: 1px solid rgba(255, 140, 0, 0.15) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(255, 140, 0, 0.08) !important;
    box-shadow: 0 0 80px rgba(255, 140, 0, 0.8) !important, 0 0 120px rgba(255, 140, 0, 0.6) !important, 0 0 160px rgba(255, 140, 0, 0.4) !important, 0 0 200px rgba(255, 140, 0, 0.2) !important;
    position: relative;
}

.section-title {
    color: #FFB900;
    font-size: 1.6rem;
    font-weight: 600;
    /* margin-bottom: 20px; */
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 14px 16px;
    
  
    transition: all 0.3s ease;
}
.detail-logo {
  width: 40px;          /* logo size */
  height: 30px;
  object-fit: contain; /* keeps logo proportions */
  flex-shrink: 0;
}


.detail-item i {
    font-size: 1.6rem;
    color: #ff8c00;
    margin-right: 16px;
    margin-top: 3px;
    width: 32px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    color: #71717a;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.detail-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ── Deliverables Section ── */
.deliverables {
    margin-top: 20px;
}

.deliverables-title {
    display: flex;
    align-items: center;
    color: #71717a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    gap: 10px;
}

.deliverables-title i {
    font-size: 1.4rem;
    color: #ff8c00;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverable-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px; 
}



.deliverable-item i {
    font-size: 1.1rem;
    color: #ff8c00;
    margin-right: -2px;
    flex-shrink: 0;
}

.deliverable-item span {
    color: #e0e0e0;
    font-size: 1.05rem;
}





/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-overlay {
        padding-left: 40px;
    }
    
    .back-btn-top {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .back-btn {
        top: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .story-section,
    .project-details-card {
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 80vh;
    }
    
    .process-title {
        margin-top: 50px !important;
        padding-top: 30px !important;
    }
    
    .hero-overlay {
        padding-left: 30px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .back-btn-top {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .back-btn {
        top: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-underline {
        width: 60px;
    }
    
    .close-btn {
        top: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .story-section,
    .project-details-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .detail-item i {
        margin-bottom: 10px;
    }
    
    .detail-label {
        min-width: auto;
        margin-right: 5px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-overlay {
        padding-left: 20px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .back-btn-top {
        top: 10px;
        left: 10px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .back-btn {
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: 2px;
        line-height: 1.1;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .close-btn {
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
    }
    
    .story-section,
    .project-details-card {
        padding: 20px;
    }
    
    .section-title::after {
        width: 40px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .deliverable-item {
        padding: 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Gallery Section */
.gallery-section {
    background-color: #0d0d0d;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
   
    width: 100%;
    width: calc(100vw - 80px);
}

/* .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
} */

.gallery-image {
    max-height: 700px;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* .gallery-item:hover .gallery-image {
    max-height: 500px;
    object-fit: cover;
    transform: scale(1.02);
} */

/* Portfolio Card Link Styling */
.portfolio-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.portfolio-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.portfolio-card-link:hover .portfolio-card {
    border: 5px solid #fe9a00;
    transition: all 0.2s ease-in-out;
    transform: scale(1.03);
}

/* Responsive Gallery */
@media (max-width: 991.98px) {
    .gallery-grid {
        gap: 35px;
        max-width: 700px;
        padding: 0 40px;
    }
    
    .gallery-item {
        width: calc(100vw - 80px);
        border-radius: 12px;
    }
    
    .gallery-image {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding-top: 1rem;
        margin-top: -4rem;
    }
    
    .gallery-grid {
        gap: 30px;
        padding: 0 30px;
        max-width: 600px;
    }
    
    .gallery-item {
        border-radius: 10px;
        width: calc(100vw - 60px);
    }
    
    .gallery-image {
        max-height: 400px;
    }
    
    /* .gallery-item:hover {
        transform: translateY(-3px);
    } */
    
    /* .gallery-item:hover .gallery-image {
        transform: scale(1.01);
    } */
}

@media (max-width: 576px) {
    .gallery-section {
        padding-top: 0.5rem;
        margin-top: -5rem;
    }
    
    .gallery-grid {
        gap: 20px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .gallery-item {
        width: calc(100vw - 40px);
        border-radius: 8px;
    }
    
    .gallery-image {
        max-height: 350px;
    }
    
    /* .gallery-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }
     */
    /* .gallery-item:hover .gallery-image {
        transform: scale(1.005);
    } */
}

@media (max-width: 480px) {
    .gallery-section {
        padding-top: 0.3rem;
        margin-top: -6rem;
    }
    
    .gallery-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .gallery-item {
        width: calc(100vw - 30px);
        border-radius: 6px;
    }
    
    .gallery-image {
        max-height: 300px;
    }
    
    /* .gallery-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }
     /* */
    /* .gallery-item:hover .gallery-image {
        transform: none;
    } */
} */



/* Process Section */
.process-section {
    background-color: #0d0d0d;
    margin-top: -12rem;
}

.process-title {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 150px;
    padding-top: 100px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px; 
    
}

.process-subtitle {
    font-size: 48px;
    color: #b8b8b8;
    /* margin-bottom: 50px; */
    font-weight: 400;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
 
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: rgba(255, 140, 0, 0.25);
    transform: scale(1.1);
}

.process-icon i {
    font-size: 1.5rem;
    color: #ff8c00;
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-card-description {
    font-size: 0.95rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive Process */
@media (max-width: 768px) {
    .process-title {
        font-size: 2rem;
    }
    
 .process-subtitle {
        font-size: 2.5rem;
        margin-bottom: 160px;
        color: #ffffff;
        font-weight: 700;
        text-align: center;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-top: 100px;
    }
    
    .process-card {
        padding: 25px 20px;
         margin-top: -35px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .process-icon i {
        font-size: 1.3rem;
    }
    
    .process-card-title {
        font-size: 1.2rem;
    }
    
    .process-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .process-subtitle {
        font-size: 2.2rem;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 150px;
        text-align: center;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .process-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .process-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 12px;
    }
    
    .process-icon i {
        font-size: 1.2rem;
    }
    
    .process-card-title {
        font-size: 1.1rem;
    }
    
    .process-card-description {
        font-size: 0.85rem;
    }
}



/* Results Section */
.results-section {
    background-color: #0d0d0d;
}

.impact-tag {
    display: inline-block;
    /* background: rgba(255, 140, 0, 0.15); */
    /* border: 1px solid rgba(255, 140, 0, 0.3); */
    color: #ff8c00;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 50px;
}

.result-item {
    padding: 30px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-number {
    font-size: 3rem;
    font-weight: 300;
    color: #FE9A00;
    margin-bottom: 10px;
    line-height: 1;
}

.result-description {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin: 0;
    font-weight: 500;
}

/* Process Section */
.process-section {
    background: #0a0a0a;
}

.process-section .process-title {
    color: #ff8c00;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.25px;
    margin-bottom: 30px;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.process-section h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-style: regular;
    line-height: 48px;
    letter-spacing: 0.35px;
    height: 48px;
}

/* .process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #ff8c00;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
} */

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    border-color: #ffb347;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.process-icon {
    font-size: 2rem;
    color: #ffffff;
}

.process-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.process-description {
    color: #9f9fa9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #0d0d0d;
}

.testimonial-card {
     background: linear-gradient(135deg, #18181B, #000000);
    border: 1px solid #FE9A004D;
    border-radius: 20px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 170, 51, 0.15);
    min-height: 350px;
}

.glow-corner {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.glow-top-left {
    top: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(255, 170, 51, 0.15) 0%, rgba(255, 170, 51, 0.08) 40%, transparent 70%);
    filter: blur(25px);
}

.glow-bottom-right {
    bottom: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 170, 51, 0.15) 0%, rgba(255, 170, 51, 0.08) 40%, transparent 70%);
    filter: blur(25px);
}

.quote-marks {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    color: #ffaa33;
    opacity: 0.7;
    font-family: Georgia, serif;
    font-weight: bold;
    z-index: 1;
}

.testimonial-card:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 170, 51, 0.3);
}

.testimonial-icon {
    font-size: 2.5rem;
    color: #ffaa33;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-title {
    font-size: 1rem;
    color: #ffaa33;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Results & Testimonial */
@media (max-width: 768px) {
    .results-title {
        font-size: 2rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .result-description {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .glow-corner {
        width: 100px;
        height: 100px;
    }
    
    .glow-top-left {
        top: -30px;
        left: -30px;
    }
    
    .glow-bottom-right {
        bottom: -30px;
        right: -30px;
    }
    
    .quote-marks {
        font-size: 70px;
        top: 15px;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
    }
    
    .testimonial-author {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .impact-tag {
        font-size: 0.7rem;
        padding: 5px 15px;
    }
    
    .results-title {
        font-size: 1.8rem;
    }
    
    .result-item {
        padding: 20px 15px;
    }
    
    .result-number {
        font-size: 2.2rem;
    }
    
    .result-description {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .glow-corner {
        width: 80px;
        height: 80px;
    }
    
    .glow-top-left {
        top: -25px;
        left: -25px;
    }
    
    .glow-bottom-right {
        bottom: -25px;
        right: -25px;
    }
    
    .quote-marks {
        font-size: 60px;
        top: 10px;
    }
    
    .testimonial-icon {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        font-size: 1.1rem;
    }
    
    .testimonial-title {
        font-size: 0.85rem;
    }
}



/* Related Projects Section */
/* .related-projects-section {
    background-color: #0d0d0d;
}

.more-work-tag {
    display: inline-block;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    color: #ff8c00;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.related-projects-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-category {
    color: #ff8c00;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
} */ 

.portfolio-section {
    background: black;
    padding: 120px 0
}

.portfolio-section .subtitle {
   color: #fe9a00;
    font-size: 1.1rem;
    letter-spacing: 1.25px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.portfolio-section h2 {
     color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-style: regular;
    line-height: 48px;
    letter-spacing: 0.35px;
    height: 48px;
}

.portfolio-card {
    position: relative;
    height: 535px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s;
}

.portfolio-card:hover {
    transform: scale(1.03)
}

.portfolio-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 1;
    transition: opacity .3s
}

.portfolio-card .category {
    color: #ffb900;
    font-size:12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    padding-top: 410px;
    padding-left: 20px;
    
}

.portfolio-card .project-title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 25px;
    letter-spacing: -0.45px;
    padding-left: 20px;
} 
.project-title a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Portfolio Section */
@media (max-width: 991.98px) {
    .portfolio-section {
        padding: 100px 0;
    }
    
    .portfolio-section .subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .portfolio-section h2 {
        font-size: 40px;
        line-height: 40px;
        height: 40px;
    }
    
    .portfolio-card {
        height: 450px;
        margin-bottom: 30px;
    }
    
    .portfolio-card .category {
        padding-top: 350px;
        font-size: 11px;
    }
    
    .portfolio-card .project-title {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 80px 0;
    }
    
    .portfolio-section .subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .portfolio-section h2 {
        font-size: 32px;
        line-height: 32px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .portfolio-card {
        height: 380px;
        margin-bottom: 25px;
        border-radius: 8px;
    }
    
    .portfolio-card:hover {
        transform: scale(1.02);
    }
    
    .portfolio-card .overlay {
        padding: 20px;
    }
    
    .portfolio-card .category {
        padding-top: 300px;
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .portfolio-card .project-title {
        font-size: 16px;
        line-height: 20px;
        padding-left: 15px;
    }
}
  .portfolio-card:first-child,
    .row .portfolio-card:first-child {
        background-position: center 10% !important;
    }
@media (max-width: 576px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section .subtitle {
        font-size: 0.85rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    
    .portfolio-section h2 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    
    .portfolio-card {
        height: 320px;
        margin-bottom: 20px;
        border-radius: 6px;
    }
    
    .portfolio-card:hover {
        transform: scale(1.01);
    }
    
    .portfolio-card .overlay {
        padding: 15px;
    }
    
    .portfolio-card .category {
        padding-top: 250px;
        font-size: 9px;
        margin-bottom: 1px;
        padding-left: 15px;
    }
    
    .portfolio-card .project-title {
        font-size: 14px;
        line-height: 18px;
        padding-left: 15px;
        letter-spacing: -0.3px;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 40px 0;
    }
    
    .portfolio-section .subtitle {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .portfolio-section h2 {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 12px;
    }
    
    .portfolio-card {
        height: 280px;
        margin-bottom: 15px;
        border-radius: 4px;
    }
    
    .portfolio-card:hover {
        transform: none;
    }
    
    .portfolio-card .overlay {
        padding: 10px;
    }
    
    .portfolio-card .category {
        padding-top: 200px;
        font-size: 8px;
        padding-left: 10px;
    }
    
    .portfolio-card .project-title {
        font-size: 12px;
        line-height: 16px;
        padding-left: 10px;
        letter-spacing: -0.2px;
    }
}


/* Contact Form Section */
.contact-form-section {
    background-color: #0d0d0d;
}

.contact-title {
    font-size: 3.75rem;
    font-weight: 400; 
    
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.contact-form {
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    background-color: black;
    background-image: radial-gradient(circle at center top, rgba(255, 165, 0, 0.25) 0%, rgba(255, 165, 0, 0) 60%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-blend-mode: normal;
}

.form-control {
    background: black;
    border: 1px solid rgba(255, 140, 0, 0.15);
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px rgba(255, 140, 0, 0.03);
}

.form-control:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff8c00;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
    outline: none;
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    color: #ffffff;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px rgba(255, 140, 0, 0.03);
}

.form-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff8c00;
}

.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
    outline: none;
    color: #ffffff;
}


.form-select option {
    background: #0d0d0d;
    color: #ffffff;
}

.btn-request-call-back {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-request-call-back:hover {
    background: linear-gradient(135deg, #ff6600, #ff8c00);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

/* Responsive Related Projects & Contact */
@media (max-width: 768px) {
    .related-projects-title {
        font-size: 2rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-overlay {
        padding: 20px 15px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin: 0 auto 30px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-control,
    .form-select {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn-request-call-back {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .more-work-tag {
        font-size: 0.7rem;
        padding: 5px 15px;
    }
    
    .related-projects-title {
        font-size: 1.8rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-overlay {
        padding: 15px 12px;
    }
    
    .project-title {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        margin: 0 auto 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-control,
    .form-select {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .btn-request-call-back {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

